home *** CD-ROM | disk | FTP | other *** search
/ Univers Mac Interactif 42 / Univers Mac Interactif - Issue 42.iso / >interactif / Démos Voyager / AHDN.DIR / 00029_Script_MovieScript < prev    next >
Text File  |  1994-10-31  |  576b  |  34 lines

  1. on startMovie
  2. end
  3.  
  4. on silenceMe
  5.   set the sound of cast 3 to 0
  6.   set the sound of cast 11 to 0
  7.   set the sound of cast 18 to 0
  8.   set the sound of cast 22 to 0
  9.   set the sound of cast 28 to 0
  10. end
  11.  
  12. on enterframe
  13.   cursor 200
  14. end
  15.  
  16. on waitQT chan
  17.   if the movieRate of sprite chan = 1 then go to the frame
  18. end
  19.  
  20. on waitSnd chan
  21.   if  soundbusy(chan) = 1 then go to the frame
  22. end 
  23.  
  24. on timing theTicks
  25.   repeat while (theTicks >= the timer)
  26.     go the frame
  27.   end repeat
  28. end
  29.  
  30. on keyDown
  31.   global autoplaying
  32.   put 0 into autoplaying
  33.   go frame 65
  34. end